3
How do I change the control's font

With AxSlider1
	.ThumbSize = 32
	.Font.Name = "Tahoma"
	.ForeColor = RGB(255,0,0)
	.set_Caption(EXSLIDERLib.PartEnum.exThumbPart,"thumb")
End With
2
How can I change the control's foreground color

With AxSlider1
	.ForeColor = RGB(255,0,0)
	.ThumbSize = 32
	.set_Caption(EXSLIDERLib.PartEnum.exThumbPart,"thumb")
End With
1
How can I change the control's background color

With AxSlider1
	.BackColor = RGB(0,255,0)
End With